From 36d9961785952391a3d5d3af913aca3624515a3c Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Mon, 12 May 2025 01:22:13 +0000 Subject: [PATCH] qt5base: install all built plugin binaries into $(STAGING_DIR) They shouldn't be necessary, as nothing will or at least should link against the resulting shared objects, as they aren't regular ones but plug-ins. However cmake-based projects complain about them missing - hence provide/install them. --- frameworks/qt5/qt5base/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/qt5/qt5base/Makefile b/frameworks/qt5/qt5base/Makefile index 2cb809f..b614228 100644 --- a/frameworks/qt5/qt5base/Makefile +++ b/frameworks/qt5/qt5base/Makefile @@ -522,6 +522,7 @@ define Build/InstallDev $(call Build/Install/Headers,$(1)) $(call Build/Install/Cmakes,$(1)) $(call Build/Install/Libs,$(1),*) + $(call Build/Install/Plugins,$(1),*,*) endef define Host/Install -- 2.30.2